-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TT-1608] Add Chainlink Image Variations (and lots of linting) #1145
Open
kalverra
wants to merge
11
commits into
main
Choose a base branch
from
addChainlinkImageVariations
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kalverra
temporarily deployed
to
integration
September 19, 2024 20:42
— with
GitHub Actions
Inactive
kalverra
temporarily deployed
to
integration
September 19, 2024 20:42
— with
GitHub Actions
Inactive
kalverra
changed the title
Add Chainlink Image Variations (and lots of linting)
[TT-1608] Add Chainlink Image Variations (and lots of linting)
Sep 19, 2024
kalverra
temporarily deployed
to
integration
September 19, 2024 20:47
— with
GitHub Actions
Inactive
kalverra
temporarily deployed
to
integration
September 20, 2024 19:48
— with
GitHub Actions
Inactive
kalverra
temporarily deployed
to
integration
September 20, 2024 19:48
— with
GitHub Actions
Inactive
kalverra
temporarily deployed
to
integration
September 20, 2024 19:52
— with
GitHub Actions
Inactive
kalverra
temporarily deployed
to
integration
September 23, 2024 17:57
— with
GitHub Actions
Inactive
kalverra
temporarily deployed
to
integration
September 23, 2024 17:57
— with
GitHub Actions
Inactive
kalverra
temporarily deployed
to
integration
September 23, 2024 18:01
— with
GitHub Actions
Inactive
kalverra
temporarily deployed
to
integration
September 23, 2024 18:58
— with
GitHub Actions
Inactive
kalverra
temporarily deployed
to
integration
September 23, 2024 18:58
— with
GitHub Actions
Inactive
kalverra
temporarily deployed
to
integration
September 23, 2024 19:02
— with
GitHub Actions
Inactive
…framework into addChainlinkImageVariations
kalverra
had a problem deploying
to
integration
October 18, 2024 17:39
— with
GitHub Actions
Failure
kalverra
had a problem deploying
to
integration
October 18, 2024 17:43
— with
GitHub Actions
Failure
kalverra
had a problem deploying
to
integration
October 22, 2024 16:19
— with
GitHub Actions
Failure
Quality Gate passedIssues Measures |
kalverra
had a problem deploying
to
integration
October 22, 2024 16:23
— with
GitHub Actions
Failure
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Lots of linting was breaking on precommit hooks. Fixed most of that.
The important bit is the changes to ./tools/citool
Below is a summarization created by an LLM (gpt-4-0125-preview). Be mindful of hallucinations and verify accuracy.
Why
The changes introduce enhancements and fixes to various blockchain-related functionalities, including Ethereum client behaviors, contract interactions, and gas estimations. These modifications aim to improve accuracy, efficiency, and security in handling blockchain transactions and data parsing.
What
lib/blockchain/blockchain.go
: Improved timestamp handling for EVM headers and modified nonce assignment to prevent potential overflows.lib/blockchain/celo.go
: Fixed nonce setting for transaction options in Celo blockchain interactions.lib/blockchain/ethereum.go
: Included math library for accurate gas estimation, corrected nonce assignment, and ensured safe Unix timestamp conversion.lib/blockchain/transaction_confirmers.go
: Adjusted block number calculations to use safer bigint operations, preventing potential int overflows.lib/client/rpc_suite_test.go
andlib/client/rpc_test.go
: Updated nonce and block number handling in tests to use bigint, ensuring correctness and safety.lib/config/network.go
: Simplified checks for nil slices in network configuration overrides.lib/gauntlet/gauntlet.go
: Corrected retry count datatype and improved logging in Gauntlet tool.lib/logstream/logstream.go
: Ensured safe calculation and handling of log stream backfill and connection retry logic.lib/utils/seth/seth.go
: Adjusted several blockchain utility functions for correct data handling and added checks for potential overflows.seth/block_stats.go
,seth/client.go
,seth/client_api_test.go
,seth/gas.go
,seth/gas_adjuster.go
,seth/keyfile.go
,seth/nonce.go
,seth/tracing.go
,seth/util.go
, andseth/util_test.go
: Made various fixes and improvements in Solidity contract interaction, gas estimation, nonce management, and utility functions to enhance performance, safety, and reliability.tools/breakingchanges/cmd/main.go
and related files: Updated tooling scripts for handling breaking changes, improving reliability and maintainability of the codebase.